home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / MaskedEdit / ValidationErrorEventHandler.class (.txt) < prev   
Encoding:
Java Class File  |  1998-01-08  |  891 b   |  14 lines

  1. package icontrols.MaskedEdit;
  2.  
  3. import com.ms.wd.core.Closure;
  4.  
  5. public final class ValidationErrorEventHandler extends Closure {
  6.    public void invoke(Object sender, ValidationErrorEvent e) {
  7.       ((Closure)this).invokeMethod(new Object[]{sender, e});
  8.    }
  9.  
  10.    public ValidationErrorEventHandler(Object target, String methodName) {
  11.       super(target, methodName);
  12.    }
  13. }
  14.